Home |
| Latest | About | Random
# Python exercise 1. ![[---images/---assets/---icons/computer-icon.svg]] Write a Python function called ```size_of_sun``` to estimate of the size of the sun using the distance from Earth to the Sun, the distance from Earth to the moon, and the size of the moon. Your function should look something like this ```python def size_of_sun(dist_to_sun, dist_to_moon, size_of_moon): #your code here return output ```